<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
  <!--
  INF250vc Chapter 2, Pacific Trails Resort
  Author: Manila Sopha
  Date: 9/5/2024
  -->
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Pacific Trail Resort</title>
  <link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
  <!-- Wireframe content always goes in the body -->
  <header>
    <!-- heading 1 always goes in the header to tell the search engines what the main topic is -->
    <h1>Pacific Trail Resort</h1>
    <nav>
      <!-- Creating the navigation that will be at the top of each page -->
      <ul>
        <li><a href="index.html">Home</a></li>
        <li><a href="yurts.html">Yurts</a></li>
        <li><a href="activities.html">Activities</a></li>
        <li><a href="reservation.html">Reservation</a></li>
      </ul>
    </nav>
  </header>
  <main>
    <h2 class="resort">Yurts Pacific Trail Resort</h2>
    <dl>
      <dt><strong>What is a Yurt?</strong></dt>
      <dd>Our Luxury yurts are permanent structures four feet off the ground. Each yurt is fully enclosed with canvas walls, a wooden floor, and a roof dome that can be opened.</dd>
      <dt><strong>How are the yurts furnished?</strong></dt>
      <dd>Each yurt is furnished with a queen-sized bed with down quilt and gas-fired stove. Your luxury camping experience includes electricity and a sink with hot and cold running water. Shower and restroom facilities are located in the lodge</dd>
      <dt><strong>What should I bring?</strong></dt>
      <dd>Most guests pack comfortable walking shoes and plan to dress for changing weather with light layers of clothing. It's also helpful to bring a flashlight and a sense of adventure.</dd>
    </dl>
  </main>
  <footer>
    <small>
      <i>Copyright &copy; 2024 Pacific Trails Resort<br>
      <a href="mailto:Manilasopha87@hotmail.com">Manilasopha87@hotmail</a>
      </i>
    </small>
  </footer>
</body>
</html>